home *** CD-ROM | disk | FTP | other *** search
/ Fun & Games 2 (Canada) / Fun & Games CD-ROM (Canada).bin / games / disk150 / ls.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1989-06-23  |  8.2 KB  |  394 lines

  1. program Lettershift;
  2. { programmed by    Konstantin Articus
  3.                    Gross strasse 21
  4.                    2250 Husum
  5.                    West Germany
  6.  
  7.   This game is Public Domain.
  8.   You may change it for your own purpose,
  9.   but please share it unmodified.
  10.  
  11.   possible parameters: F for faster shuffling
  12.                        M for monochrom monitor
  13.  
  14.   last changes: 23.6.1989 }
  15.  
  16. uses crt,dos;
  17.  
  18. var
  19. again,i,index,indicator,shuffl,OldDir,empty:integer;
  20. finished,faster,mono:boolean;
  21. color:byte;
  22. regs:registers;
  23. place:array[1..16] of string[1];
  24. result :array[1..4] of integer;
  25. moves,number:real;
  26.  
  27.  
  28. procedure CursorOn;
  29.  
  30. begin
  31.   regs.ah:=1;
  32.   regs.ch:=6;
  33.   regs.cl:=7;
  34.   intr($10,regs);
  35. end;
  36.  
  37.  
  38. procedure CursorOff;
  39.  
  40. begin
  41.   regs.ah:=1;
  42.   regs.ch:=15;
  43.   regs.cl:=1;
  44.   intr($10,regs);
  45. end;
  46.  
  47. procedure Error (errmsg:string);
  48.  
  49. begin
  50.   if mono=false then textcolor(red);
  51.   writeln(#7,errmsg);
  52.   if mono=false then textcolor (black);
  53. end;
  54.  
  55.  
  56. procedure SlowDownLoop;
  57.  
  58. var a,loop:integer;
  59.  
  60. begin
  61. if faster=false then for loop:=1 to 6500 do a:=1;
  62. end;
  63.  
  64.  
  65. procedure WriteAt (x,y:integer;msg:string);
  66.  
  67. begin
  68.   gotoxy(x,y);
  69.   writeln (msg);
  70. end;
  71.  
  72.  
  73. procedure DeleteLine (y:integer);
  74.  
  75. begin
  76.   gotoxy (1,y);
  77.   clreol;
  78. end;
  79.  
  80.  
  81. procedure ScreenSetUp;
  82.  
  83. var line:shortint;
  84.     plus:shortint;
  85.  
  86. begin
  87.   SlowDownLoop;
  88.   begin
  89.     gotoxy  (20,24);
  90.     writeln ('No. of moves: ',moves:3:0);
  91.     if mono = false then
  92.     begin
  93.       textbackground (brown);
  94.       textcolor (white);
  95.     end;
  96.     if mono = false then plus:=0 else plus:=-1;
  97.     WriteAt (20+plus,3,' Letter Shift ');
  98.     WriteAt (20,5,'╔═══╦═══╦═══╦═══╗');
  99.     gotoxy (20,6);
  100.     writeln ('║ ',place[1],' ║ ',place[2],' ║ ',place[3],' ║ ',place[4],' ║');
  101.     WriteAt (20,7,'╠═══╬═══╬═══╬═══╣');
  102.     gotoxy (20,8);
  103.     writeln ('║ ',place[5],' ║ ',place[6],' ║ ',place[7],' ║ ',place[8],' ║');
  104.     WriteAt (20,9 ,'╠═══╬═══╬═══╬═══╣');
  105.     gotoxy (20,10);
  106.     writeln ('║ ',place[9],' ║ ',place[10],' ║ ',place[11],' ║ ',place[12],' ║');
  107.     WriteAt (20,11,'╠═══╬═══╬═══╬═══╣');
  108.     gotoxy (20,12);
  109.     writeln ('║ ',place[13],' ║ ',place[14],' ║ ',place[15],' ║ ',place[16],' ║');
  110.     WriteAt (20,13,'╚═══╩═══╩═══╩═══╝');
  111.     if mono= false then begin
  112.     textcolor (black);
  113.     textbackground (white);
  114.     WriteAt (21,4,'▀▀▀▀▀▀▀▀▀▀▀▀▀▀');
  115.     WriteAt (34,3,'▄');
  116.     WriteAt (22,14,'▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀');
  117.     for line:= 1 to 8 do
  118.     begin
  119.       WriteAt (37,line+5,'█');
  120.     end;
  121. end;  end;
  122. end;
  123.  
  124.  
  125.  
  126. function PlayAgain:boolean;
  127.  
  128. var ch:char;
  129.  
  130. begin
  131.   DeleteLine (22);
  132.   WriteAt (20,21,'Play again ?');
  133.   repeat
  134.     gotoxy (20,22);
  135.     clreol;
  136.     cursorOn;
  137.     ch:=readkey;
  138.     cursoroff;
  139.     ch:=upcase (ch);
  140.     if not (ch  in ['Y','N']) then
  141.     begin
  142.       gotoxy (20,23);
  143.       error ('Please press Y or N !');
  144.     end;
  145.   until ch in ['Y','N'];
  146.   DeleteLine (21);DeleteLine (18);DeleteLine (23);
  147.   if ch='N' then
  148.   begin
  149.     textmode (lastmode);
  150.     textattr :=color;
  151.     clrscr;
  152.     WriteAt (1,2,'Send me a postcard, if you like the game.');
  153.     WriteAt (1,3,'Auf Wiedersehen !');
  154.   end;
  155.  
  156.     if ch='Y' then PlayAgain:=true else PlayAgain:=false;
  157. end;
  158.  
  159.  
  160. procedure stop;
  161.  
  162. begin
  163.   index:=-1;
  164.   gotoxy (20,16);
  165.   writeln (#7,'I don`t believe that you can finish the game !       ');
  166.   DeleteLine (17);
  167.   finished:=true;
  168. end;
  169.  
  170.  
  171. procedure PossibleDirections;
  172.  
  173. var r:shortint;
  174.  
  175. begin
  176.   result[1]:= indicator -4;
  177.   result[2]:= indicator +4;
  178.   result[3]:= indicator +1;
  179.   result[4]:= indicator -1;
  180.   for r:=1 to 4 do
  181.   if (result[r] >16 ) or (result [r] <1) then result [r]:=-1;
  182.   case indicator of
  183.     4: result[3]:=-1;
  184.     5: result[4]:=-1;
  185.     8: result[3]:=-1;
  186.     9: result[4]:=-1;
  187.    12: result[3]:=-1;
  188.    13: result[4]:=-1;
  189.   end;
  190. end;
  191.  
  192.  
  193.  
  194. procedure Input;
  195.  
  196. var
  197. wahl:char;
  198. direction:integer;
  199.  
  200. begin
  201.   repeat
  202.     DeleteLine (17);
  203.     WriteAt (20,16,'Which letter should be moved ? (Q = Quit)           ');
  204.     repeat
  205.       gotoxy (20,17);
  206.       clreol;
  207.       cursoron;
  208.       wahl := readkey;
  209.       cursoroff;
  210.       wahl:=upcase (wahl);
  211.       gotoxy(1,18);clreol;
  212.       if not (wahl in ['Q','A'..'O'] )then
  213.       begin
  214.         gotoxy(20,18);
  215.         error ('Please choose from A up to O or Q !           ');
  216.       end;
  217.     until wahl in ['Q','A'..'O'] ;
  218.     direction:=-1;
  219.     if wahl='Q' then
  220.     begin
  221.       index:=-1;
  222.       WriteAt (20,16,'You don`t know how to proceed ?                       ');
  223.       WriteAt (20,17,'Nor do I !                                  ');
  224.     end;
  225.     if wahl = 'Q' then exit;
  226.     for i:= 1 to 16 do if place[i]=wahl then indicator:=i;
  227.     PossibleDirections;
  228.     for i:=1 to 4 do if empty=result[i] then direction:=empty;
  229.     if direction = -1 then
  230.     begin
  231.       gotoxy(20,18);
  232.       error ('You can`t move that letter yet !                      ');
  233.     end;
  234.   until direction <> -1;
  235.   place [direction]:=place[indicator];
  236.   place [indicator]:=' ';
  237.   empty:=indicator;
  238. end;
  239.  
  240.  
  241. function managed:boolean;
  242.  
  243. var ready:boolean;
  244.     sequence:string;
  245.     j:integer;
  246.  
  247. begin
  248.   ready:=false;
  249.   sequence:='';
  250.   for j:= 1 to 16 do sequence:= sequence+ place[j];
  251.   if sequence = 'ABCDEFGHIJKLMNO ' then ready:=true;
  252.   if ready=true then
  253.   begin
  254.     WriteAt (20,16,'You managed it !                                     ');
  255.     number:=(moves*100)/shuffl;
  256.     gotoxy (20,17);
  257.     writeln ('You needed ',number:1:0,'% of the number of   ');
  258.     WriteAt (20,18,'moves the computer used to shuffle !       ');
  259.   end;
  260.   managed:=ready;
  261. end;
  262.  
  263.  
  264. procedure schuffle;
  265.  
  266. var inp2 :string;
  267. i,inp,full,PossibleDir,code :integer;
  268. wrong:boolean;
  269. m:real;
  270.  
  271. begin
  272.   WriteAt (20,16,'How often should I shuffle ?');
  273.   gotoxy (48,16);clreol;
  274.   repeat
  275.     gotoxy (20,17);clreol;
  276.     cursoron;
  277.     readln (inp2);
  278.     cursoroff;
  279.     val (inp2,shuffl,code);
  280.     if not ((shuffl>1) and (code=0) and (shuffl <201)) then
  281.     begin
  282.       DeleteLine (18);
  283.       DeleteLine (19);
  284.       gotoxy (20,18);
  285.       error ('Please input an integer number between 2 and 200 !');
  286.     end;
  287.   until (shuffl>1) and (code=0) and (shuffl <201);
  288.   DeleteLine (18);
  289.   WriteAt (20,19,'Shuffling - please wait !  ');
  290.   for I:= 1 to shuffl do
  291.   begin
  292.     repeat
  293.       repeat
  294.         wrong:= false;
  295.         PossibleDir:=round (random(4)+1);
  296.         if PossibleDir = OldDir then wrong:=true;
  297.       until wrong= false;
  298.       indicator:=empty;
  299.       PossibleDirections;
  300.     until result [PossibleDir]<>-1;
  301.     full:=result [PossibleDir];
  302.     place [empty]:=place[full];
  303.     place [full]:=' ';
  304.     empty:=full;
  305.     ScreenSetUp;
  306.     if PossibleDir= 1 then OldDir:=2;
  307.     if PossibleDir= 2 then OldDir:=1;
  308.     if PossibleDir= 3 then OldDir:=4;
  309.     if PossibleDir= 4 then OldDir:=3;
  310.     gotoxy(40,24);
  311.     Writeln (i:3,' times shuffled !');
  312.   end;
  313.   DeleteLine (19);
  314. end;
  315.  
  316.  
  317. procedure parameter;
  318.  
  319. var dummy:string;
  320.  
  321. begin
  322.   dummy:='';
  323.   faster:=false;
  324.   mono:=false;
  325.   for I:= 1 to paramcount do dummy:=dummy+paramstr (i);
  326.   for i:= 1 to length (dummy) do
  327.   begin
  328.     if upcase(dummy[i])='F' then faster:=true;
  329.     if upcase(dummy[i])='M' then mono:=true;
  330.   end;
  331. end;
  332.  
  333. procedure Initialisation;
  334.  
  335. begin
  336.   if again<> 2 then
  337.   begin
  338.     parameter;
  339.     if  mono =  false then
  340.     begin
  341.       textmode (co80);
  342.       textbackground (White);
  343.       textcolor (black);
  344.       clrscr;
  345.     end
  346.     else textmode (BW80);
  347.     clrscr;
  348.     cursoroff;
  349.     WriteAt(44,3,'programmed by');
  350.     WriteAt(44,5,'Konstantin Articus');
  351.     WriteAt(44,6,'Gross strasse 21');
  352.     WriteAt(44,7,'2250 Husum');
  353.     WriteAt(44,8,'West Germany');
  354.   end;
  355.   randomize;
  356.   OldDir:=0;
  357.   for i :=1 to 16 do
  358.   begin
  359.     place[i]:=chr(64+i);
  360.   end;
  361.   place[16]:=' ';
  362.   finished:=false;
  363.   empty:=16;
  364.   index:=0;
  365.   moves:=0;
  366.   ScreenSetUp;
  367.   gotoxy(40,24);
  368.   writeln (0:3,' times shuffled !');
  369. end;
  370.  
  371.  
  372. begin
  373.   color:=textattr;
  374.   again:=1;
  375.   repeat
  376.     Initialisation;
  377.     again:=2;
  378.     schuffle;
  379.     repeat
  380.       moves:=moves+1;
  381.       Input;
  382.       if index<>-1 then
  383.       begin
  384.         ScreenSetUp;
  385.         finished:=managed;
  386.         if moves =999 then stop;
  387.       end
  388.       else finished:=true;
  389.     until finished = true;
  390.   until PlayAgain =false;
  391. end.
  392.  
  393.  
  394.